/* AZ POD Customizer — frontend styles */
.azpod-wrap {
    margin: 20px 0;
    padding: 16px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    background: #fff;
    font-family: inherit;
}
.azpod-wrap * { box-sizing: border-box; }

.azpod-tabs {
    display: flex;
    gap: 4px;
    margin-bottom: 12px;
    border-bottom: 1px solid #e5e7eb;
}
.azpod-tab {
    padding: 8px 16px;
    background: #f3f4f6;
    border: 1px solid transparent;
    border-bottom: none;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    color: #374151;
    margin-bottom: -1px;
    transition: all .15s;
}
.azpod-tab:hover { background: #e5e7eb; }
.azpod-tab.is-active {
    background: #fff;
    border-color: #e5e7eb;
    border-bottom-color: #fff;
    color: #111827;
}

.azpod-canvas-wrap {
    position: relative;
    display: flex;
    justify-content: center;
    background: #f9fafb;
    border-radius: 6px;
    padding: 10px;
    min-height: 300px;
}
.azpod-canvas-wrap canvas {
    max-width: 100%;
    height: auto !important;
    box-shadow: 0 2px 8px rgba(0,0,0,.08);
    border-radius: 4px;
    background: #fff;
}

.azpod-loading {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,.7);
    border-radius: 6px;
    z-index: 10;
}
.azpod-hidden { display: none !important; }
.azpod-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid #e5e7eb;
    border-top-color: #3b82f6;
    border-radius: 50%;
    animation: azpod-spin .8s linear infinite;
}
@keyframes azpod-spin { to { transform: rotate(360deg); } }

.azpod-hint {
    margin: 10px 0 0;
    font-size: 13px;
    color: #6b7280;
    text-align: center;
}

/* Cart preview thumbnail */
.wc-item-meta img,
.woocommerce-cart-form img[src*="/azpod/"] {
    max-width: 120px;
    height: auto;
    border-radius: 4px;
    margin-top: 4px;
}
