/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */

/* Stack styling */
.inventory-manager-stack {
    margin-bottom: 30px;
    position: relative;
}

/* Optional: Style the main and targeted stacks differently */
.inventory-manager-stack-main {
    /* Default styling - no additional styles needed */
}

.inventory-manager-stack-targeted {
    /* Optional: Give targeted stacks a subtle indicator */
    border-left: 3px solid #4a89dc;
    padding-left: 15px;
}

/* Style for query parameter selected stacks */
.inventory-manager-stack-query {
    border-left: 3px solid #e67e22;
    padding-left: 15px;
}

/* Query parameter notice styling */
.stack-query-notice {
    background-color: #fffde7;
    border: 1px dashed #e67e22;
    color: #333;
    font-size: 12px;
    padding: 5px 10px;
    margin-bottom: 15px;
    border-radius: 3px;
}

/* Optional: Add a small indicator for debugging in dev environments */
.inventory-manager-stack::after {
    content: attr(data-stack-type);
    position: absolute;
    top: 0;
    right: 0;
    font-size: 10px;
    background: #f5f5f5;
    padding: 2px 5px;
    border-radius: 3px;
    color: #888;
    opacity: 0.5;
    display: none; /* Hidden by default */
}

/* Show stack type indicator in development environment */
body.development .inventory-manager-stack::after {
    display: block;
}

/* Offer wrapper styling */
.offer-wrapper {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.offer-wrapper:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

/* Image styling */
.offer-wrapper img {
    max-width: 100%;
    height: auto;
}

.tsw-im-disclaimer{
    font-size:13px;
    font-style:italic;
}