.latulipe-product-shortcode {
    margin: 16px 0;
    position: relative;
    min-height: 140px;
}

.latulipe-ps-price {
    margin-bottom: 10px;
    font-weight: 600;
}

.latulipe-ps-meta,
.latulipe-ps-stock {
    margin-bottom: 8px;
    font-size: 14px;
}

.latulipe-ps-group {
    margin: 12px 0;
}

.latulipe-ps-label {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 6px;
}

.latulipe-ps-options {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.latulipe-ps-option {
    border: 1px solid #d7d7d7;
    background: #f8f8f8;
    padding: 6px 12px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
}

.latulipe-ps-option.is-active {
    background: #111111;
    color: #ffffff;
    border-color: #111111;
}

.latulipe-ps-option.is-disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.latulipe-ps-option.is-blocked {
    opacity: 0.5;
    cursor: not-allowed;
}

.latulipe-ps-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 12px;
}

.latulipe-product-shortcode .latulipe-qty__input {
    min-width: 44px;
    width: 44px;
    padding: 0 6px;
    text-align: center;
    color: #111111;
    background: #ffffff;
    border: 1px solid #e5e5e5;
}

.latulipe-ps-loading {
    display: none;
    position: absolute;
    inset: 0;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 8px;
}

.latulipe-product-shortcode.is-loading .latulipe-ps-loading {
    display: flex;
}

.latulipe-ps-loading__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #111111;
    animation: latulipe-ps-loading 1s infinite ease-in-out;
}

.latulipe-ps-loading__dot:nth-child(2) {
    animation-delay: 0.15s;
}

.latulipe-ps-loading__dot:nth-child(3) {
    animation-delay: 0.3s;
}

@keyframes latulipe-ps-loading {
    0%,
    80%,
    100% {
        opacity: 0.3;
        transform: scale(0.85);
    }
    40% {
        opacity: 1;
        transform: scale(1);
    }
}

.latulipe-ps-hidden-row {
    display: none;
}
