/* Frontend CSS for FXAN Checkout - Classic Checkout Product Images */

/* Base wrapper styling */
.fxan-product-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* LEFT (Default) - Image on the left */
.fxan-product-wrapper.fxan-pos-left {
    flex-direction: row;
}

/* RIGHT - Image on the right */
.fxan-product-wrapper.fxan-pos-right {
    flex-direction: row-reverse;
    justify-content: space-between;
}

.fxan-product-wrapper.fxan-pos-right .fxan-summary-image {
    margin-left: auto;
}

/* TOP - Image above the name */
.fxan-product-wrapper.fxan-pos-top {
    flex-direction: column;
    align-items: flex-start;
}

.fxan-product-wrapper.fxan-pos-top .fxan-summary-image {
    margin-bottom: 8px;
    max-width: 80px;
}

/* Product name styling */
.fxan-product-name {
    flex: 1;
}

/* Image styling */
.fxan-summary-image {
    max-width: 50px;
    height: auto;
    border-radius: 4px;
}
