.ecoway-card-colors,
.ecoway-modal-color-options {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 9px;
}

.ecoway-card-colors {
    margin-top: 12px;
}

.ecoway-color-swatch {
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    padding: 0;
    border: 2px solid #ffffff;
    background: var(--swatch-color, #ddd);
    box-shadow: 0 0 0 1.5px #cbd5e1;
    outline: none;
    cursor: pointer;
    box-sizing: border-box;
    display: inline-block;
    vertical-align: middle;
    transition: box-shadow .18s ease, transform .18s ease;
}

.ecoway-color-swatch:hover {
    transform: scale(1.2);
    box-shadow: 0 0 0 1.5px #1d4ed8;
}

.ecoway-color-swatch.is-selected {
    box-shadow: 0 0 0 2px #1d4ed8, 0 2px 6px rgba(29, 78, 216, 0.25);
    transform: scale(1.15);
}

.ecoway-modal-color-swatch {
    width: 24px;
    height: 24px;
    flex: 0 0 24px;
}

.ecoway-modal-colors {
    width: 100%;
    margin: 12px 0 14px;
    padding: 12px;
    border: 1px solid #e4ecfa;
    border-radius: 13px;
    background: #f8fbff;
}

.ecoway-modal-color-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 10px;
    color: #0b3ea1;
    font-size: 13px;
    font-weight: 700;
}

.ecoway-variant-stock-badge {
    display: inline-flex;
    align-items: center;
    min-height: 26px;
    margin-top: 10px;
    padding: 4px 9px;
    border-radius: 999px;
    background: #e8f5ec;
    color: #147a36;
    font-size: 12px;
    font-weight: 700;
}

.ecoway-variant-stock-badge.is-low {
    background: #fff4e5;
    color: #9a5800;
}

.ecoway-variant-stock-badge.is-empty {
    background: #feeceb;
    color: #b42318;
}

.ecoway-cart-color {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 3px;
    color: #667085;
    font-size: 12px;
}

.ecoway-cart-color-dot,
.ecoway-order-color-swatch {
    width: 14px;
    height: 14px;
    display: inline-block;
    flex: 0 0 14px;
    border: 2px solid #fff;
    border-radius: 50%;
    background: var(--swatch-color, #ddd);
    box-shadow: 0 0 0 1px #cbd2dc;
}

.ecoway-no-colors {
    color: #b42318;
    font-size: 12px;
    font-weight: 700;
}

.ecoway-product-card,
.ecoway-offer-card {
    align-self: start;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    padding: 0;
    background: #ffffff;
    box-shadow: 0 2px 8px -2px rgba(15, 23, 42, 0.06);
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.28s cubic-bezier(0.2, 0, 0, 1), box-shadow 0.28s cubic-bezier(0.2, 0, 0, 1), border-color 0.25s;
    user-select: none;
}

.ecoway-product-card:hover,
.ecoway-offer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 32px -8px rgba(15, 23, 42, 0.12);
    border-color: #cbd5e1;
}

.ecoway-product-card .card-product-wrapper,
.ecoway-offer-card .card-product-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    background: #ffffff;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 10px;
    border-bottom: 1px solid #f1f5f9;
    box-sizing: border-box;
}

.ecoway-product-card .product-img,
.ecoway-offer-card .product-img {
    width: 100%;
    flex: 1;
    min-height: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    overflow: hidden;
    margin-top: 4px;
}

.ecoway-product-card .card-product-wrapper img,
.ecoway-offer-card .product-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center bottom;
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.ecoway-product-card:hover .card-product-wrapper img,
.ecoway-offer-card:hover .product-img img {
    transform: scale(1.06);
}

.ecoway-product-card .product-img .img-hover {
    display: none;
}

/* Badges Top Bar - Normal Flow (Discount Left, Stacked Limits Right) */
.ecoway-product-meta,
.ecoway-offer-meta {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    z-index: 3;
    pointer-events: none;
    direction: ltr;
    padding: 0;
}

.ecoway-product-meta {
    justify-content: flex-end;
}

/* Limit Chips Group (Gift & Order) - Stacked Blue Pills on Right */
.ecoway-product-meta .ecoway-limit-circles,
.ecoway-offer-meta .ecoway-limit-circles {
    position: static;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 5px;
    z-index: auto;
    margin-inline-start: auto;
    direction: ltr;
}

.ecoway-product-meta .ecoway-limit-circle,
.ecoway-offer-meta .ecoway-limit-circle {
    background: #0b63f6;
    color: #ffffff;
    font-size: 11.5px;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 68px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(11, 99, 246, 0.22);
}

/* Discount Badge - Orange Pill on Left */
.ecoway-offer-badge {
    position: static;
    flex: 0 0 auto;
    background: #e95818;
    color: #ffffff;
    font-size: 12px;
    font-weight: 800;
    padding: 5px 12px;
    border-radius: 999px;
    box-shadow: 0 4px 12px rgba(233, 88, 24, 0.25);
    letter-spacing: -0.2px;
    direction: ltr;
    line-height: 1.2;
    align-self: flex-start;
}

/* Quick View Button */
.ecoway-product-card .card-product-wrapper .list-product-btn.absolute-2,
.ecoway-offer-card .card-product-wrapper .list-product-btn.absolute-2 {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translate(-50%, 14px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s cubic-bezier(0.2, 0, 0, 1);
    z-index: 4;
}

.ecoway-product-card:hover .card-product-wrapper .list-product-btn.absolute-2,
.ecoway-offer-card:hover .card-product-wrapper .list-product-btn.absolute-2 {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
}

.card-product .list-product-btn.absolute-2 a.box-icon {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 999px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0f172a;
}

.card-product .list-product-btn.absolute-2 a.box-icon:hover {
    background: #1d4ed8;
    color: #ffffff;
    border-color: #1d4ed8;
    box-shadow: 0 8px 20px rgba(29, 78, 216, 0.3);
}

/* Card Info & Details */
.card-product.ecoway-product-card .card-product-info,
.card-product.style-9.ecoway-offer-card .card-product-info {
    padding: 14px 14px 14px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex-grow: 1;
    width: 100%;
    text-align: left;
    direction: ltr;
}

.card-product.ecoway-product-card .card-product-info .inner-info,
.card-product.style-9.ecoway-offer-card .card-product-info .inner-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 0;
    align-items: flex-start;
    text-align: left;
    direction: ltr;
}

.card-product.ecoway-product-card .card-product-info .title,
.ecoway-offer-card .card-product-info .title {
    font-size: 17px;
    font-weight: 700;
    color: #0f172a;
    text-decoration: none;
    line-height: 1.35;
    margin-bottom: 2px;
    min-height: auto;
    transition: color 0.2s;
    text-align: left;
    direction: ltr;
    display: block;
    width: 100%;
}

.card-product.ecoway-product-card .card-product-info .title:hover,
.ecoway-offer-card .card-product-info .title:hover {
    color: #1d4ed8;
}

.card-product.ecoway-product-card .card-product-info .title h5,
.ecoway-offer-card .card-product-info .title h5 {
    margin: 0;
    font: inherit;
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
    text-align: left;
    direction: ltr;
}

/* Pricing and PV Value Row - Uniform Typography (XX EGP / YY PV) */
.ecoway-product-value,
.ecoway-offer-value {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 6px;
    width: 100%;
    margin-top: 4px;
    white-space: nowrap;
    direction: ltr;
    color: #0f172a;
    font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.2px;
}

.ecoway-product-price,
.ecoway-offer-price,
.ecoway-product-points,
.ecoway-offer-points,
.ecoway-product-value-separator,
.ecoway-offer-value-separator {
    color: inherit;
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
    background: transparent;
    border: none;
    padding: 0;
    border-radius: 0;
    display: inline;
}

.ecoway-product-value-separator,
.ecoway-offer-value-separator {
    color: #0f172a;
    margin: 0 1px;
}

.ecoway-offer-old-price,
.ecoway-modal-old-price {
    color: #94a3b8;
    text-decoration: line-through;
}

.ecoway-offer-old-price {
    width: max-content;
    max-width: 100%;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 2px;
    direction: ltr;
    text-align: left;
}

.ecoway-card-stock-message {
    color: #b42318;
    font-size: 12px;
    font-weight: 700;
    line-height: 16px;
    margin-top: 2px;
}

.ecoway-card-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    width: 100%;
    min-height: 46px;
    margin-top: 2px;
    direction: ltr;
}

.card-product.ecoway-product-card .ecoway-card-purchase-button,
.card-product.ecoway-offer-card .ecoway-card-purchase-button {
    position: relative;
    inset: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 46px;
    align-self: flex-start;
    width: 46px !important;
    height: 46px !important;
    min-width: 46px !important;
    min-height: 46px !important;
    max-width: 46px !important;
    max-height: 46px !important;
    aspect-ratio: 1 / 1;
    box-sizing: border-box;
    padding: 0;
    border: 0;
    border-radius: 50% !important;
    background: #0865f5;
    color: #ffffff;
    box-shadow: 0 10px 24px rgba(8, 101, 245, 0.22);
    line-height: 1;
    opacity: 1;
    visibility: visible;
    transform: none;
    z-index: 3;
}

.card-product.ecoway-product-card .ecoway-card-purchase-button .icon,
.card-product.ecoway-offer-card .ecoway-card-purchase-button .icon {
    font-size: 17px;
    line-height: 1;
}

.card-product.ecoway-product-card .ecoway-card-purchase-button:hover,
.card-product.ecoway-offer-card .ecoway-card-purchase-button:hover {
    background: #0758d3;
    color: #ffffff;
    box-shadow: 0 12px 26px rgba(8, 101, 245, 0.3);
    transform: translateY(-1px);
}

.ecoway-card-purchase-button .tooltip {
    margin: 0;
}

.ecoway-product-footer {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex: 1 1 auto;
    width: 100%;
    min-height: 24px;
    margin-top: 0;
}

.ecoway-card-colors-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-top: 4px;
    direction: ltr;
}

.ecoway-color-label {
    font-size: 13px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 4px;
    line-height: 1;
}

.ecoway-color-label .color-prefix {
    color: #64748b;
    font-weight: 500;
}

.ecoway-color-label .color-name {
    color: #0f172a;
    font-weight: 700;
}

.ecoway-card-colors {
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 0;
}

/* Offer Countdown Pill - Pinned to bottom */
.ecoway-offer-footer {
    display: flex;
    align-items: center;
    width: 100%;
    margin-top: auto;
    padding-top: 4px;
}

.ecoway-offer-countdown {
    background: #fffbeb;
    border: 1px solid #fef3c7;
    color: #b45309;
    padding: 6px 10px;
    border-radius: 10px;
    font-size: 11.5px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    direction: ltr;
    margin-top: auto;
    text-align: center;
    line-height: 1.2;
}

.ecoway-cart-offer-badge { display:inline-flex; width:max-content; margin-top:4px; padding:2px 7px; border-radius:999px; background:#fff0d5; color:#9a5800; font-size:11px; font-weight:800; }

/* Mobile Card Responsiveness - Guaranteed No-Overlap on Any Screen */
@media (max-width: 576px) {
    .ecoway-product-card .card-product-wrapper,
    .ecoway-offer-card .card-product-wrapper {
        padding: 8px 8px 6px;
    }
    .ecoway-offer-badge {
        font-size: 11px;
        padding: 4px 8px;
    }
    .ecoway-product-meta .ecoway-limit-circle,
    .ecoway-offer-meta .ecoway-limit-circle {
        font-size: 10px;
        padding: 3px 8px;
        min-width: auto;
    }
    .card-product.ecoway-product-card .card-product-info,
    .card-product.style-9.ecoway-offer-card .card-product-info {
        padding: 9px 7px 11px;
    }
    .card-product.ecoway-product-card .card-product-info .title,
    .ecoway-offer-card .card-product-info .title {
        font-size: 15px;
    }
    .ecoway-product-value,
    .ecoway-offer-value {
        flex-wrap: wrap;
        column-gap: 3px;
        row-gap: 2px;
        min-width: 0;
        white-space: normal;
        font-size: 12.5px;
        letter-spacing: -0.25px;
    }
    .ecoway-product-price,
    .ecoway-offer-price,
    .ecoway-product-points,
    .ecoway-offer-points {
        flex: 0 0 auto;
        white-space: nowrap;
    }
    .ecoway-product-value-separator,
    .ecoway-offer-value-separator {
        display: none;
    }
    .ecoway-product-points,
    .ecoway-offer-points {
        display: inline-flex;
        align-items: center;
        gap: 3px;
    }
    .ecoway-product-points::before,
    .ecoway-offer-points::before {
        content: '/';
        color: #0f172a;
    }
}

@media (max-width: 380px) {
    .card-product.ecoway-product-card .card-product-info,
    .card-product.style-9.ecoway-offer-card .card-product-info {
        padding: 8px 6px 10px;
    }
    .ecoway-product-value,
    .ecoway-offer-value {
        column-gap: 2px;
        font-size: 11.5px;
        letter-spacing: -0.3px;
    }
    .ecoway-product-points,
    .ecoway-offer-points {
        gap: 2px;
    }
}
